data _null_; a=12.3; b=20.5; a2=a**2; b2=b**2; h=sqrt(sum(a2,b2)); put h; run;